home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 February / EnterCD 02_2004.iso / Gry / Arcade! Classic Arcade Pack 2.0 / Arcade.EXE / $PROGRAMFILES / Arcade! Classic Arcade Pack / snake.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2003-12-05  |  230 b   |  13 lines

  1. stop();
  2. Stage.showMenu = false;
  3. this.onEnterFrame = function()
  4. {
  5.    sofar = this.getBytesLoaded();
  6.    total = this.getBytesTotal();
  7.    if(sofar == total)
  8.    {
  9.       delete this.onEnterFrame;
  10.       nextFrame();
  11.    }
  12. };
  13.